aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj_sh6042026-05-07 00:29:41 -0400
committerkj_sh6042026-05-07 00:29:41 -0400
commit8e3e9b6de0143970fb49bd619c61921115c4fd67 (patch)
treea5a60249314275cd3b660c3d2b370dbae1c2aeea
parent5bb197cd304d6cab32c39782b60391f9b399541b (diff)
refactor: use busybox:stable instead
-rw-r--r--Dockerfile8
1 files changed, 2 insertions, 6 deletions
diff --git a/Dockerfile b/Dockerfile
index 91a6401..00d5b2e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,13 +1,9 @@
-FROM ubuntu:22.04
+FROM busybox:stable
WORKDIR /srv/www
-RUN apt-get update \
- && apt-get install -y --no-install-recommends python3 \
- && rm -rf /var/lib/apt/lists/*
-
COPY ./excalidraw-app/build/ /srv/www/
EXPOSE 8000
-CMD ["python3", "-m", "http.server", "8000"] \ No newline at end of file
+CMD ["httpd", "-f", "-v", "-p", "8000", "-h", "/srv/www"] \ No newline at end of file