Skip to content

Commit 8225ac3

Browse files
authored
Use relative paths in Dockerfile
1 parent bfe363c commit 8225ac3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ ENV PYTHONUNBUFFERED 1
1010
RUN pip install --upgrade --no-cache-dir twine
1111

1212
WORKDIR /app
13-
COPY ./LICENSE.md /app/
14-
COPY ./twine-upload.sh /app/
13+
COPY LICENSE.md .
14+
COPY twine-upload.sh .
1515

16-
RUN chmod +x /app/twine-upload.sh
16+
RUN chmod +x twine-upload.sh
1717
ENTRYPOINT ["/app/twine-upload.sh"]

0 commit comments

Comments
 (0)