aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorkj_sh6042026-03-14 17:31:03 -0400
committerkj_sh6042026-03-14 17:31:03 -0400
commit166ff4e802e832f6e6175627a8794eba327028c4 (patch)
treed2bc74303906da862b772f448b34ec7f93076a63 /Dockerfile
parent8312497a4926642873154d239451835061435589 (diff)
refactor: update stuff based on moved to src/
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 5246b3a..a3d42c7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,11 +15,11 @@ WORKDIR /app
COPY . .
-RUN mkdir -p /app/data \
+RUN mkdir -p /app/src/data \
&& adduser -D appuser && chown -R appuser:appuser /app
EXPOSE 5555
USER appuser
-CMD ["python3", "server.py"]
+CMD ["python3", "src/server.py"]