Skip to content

Commit fa5555c

Browse files
authored
Update dockerfile
1 parent 12955f4 commit fa5555c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ FROM python:3.11
2727
RUN apt-get update && apt-get upgrade -y
2828

2929
# Set working directory
30-
WORKDIR /
30+
WORKDIR /opt/musort/
3131

3232
# Copy project
33-
COPY ./src/config.py /config.py
34-
COPY ./src/variables.py /variables.py
35-
COPY ./src/tinytag.py /tinytag.py
36-
COPY ./src/musort.py /musort.py
33+
COPY ./src/config.py /opt/musort/config.py
34+
COPY ./src/variables.py /opt/musort/variables.py
35+
COPY ./src/tinytag.py /opt/musort/tinytag.py
36+
COPY ./src/musort.py /opt/musort/musort.py
3737

3838
# docker run --name musort --rm -it musort --help
39-
ENTRYPOINT ["python3", "/musort.py"]
39+
ENTRYPOINT ["python3", "musort.py"]

0 commit comments

Comments
 (0)