aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 91a6401a0835624511191ed82ca9cc9df5185b99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:22.04

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"]