diff options
| author | kj_sh604 | 2026-05-07 00:29:41 -0400 |
|---|---|---|
| committer | kj_sh604 | 2026-05-07 00:29:41 -0400 |
| commit | 8e3e9b6de0143970fb49bd619c61921115c4fd67 (patch) | |
| tree | a5a60249314275cd3b660c3d2b370dbae1c2aeea /Dockerfile | |
| parent | 5bb197cd304d6cab32c39782b60391f9b399541b (diff) | |
refactor: use busybox:stable instead
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -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 |
