aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-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