DarkflameServer/docker/brickfix.Dockerfile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
162 B
Docker
Raw Normal View History

2021-12-07 20:25:15 +00:00
# syntax=docker/dockerfile:1
FROM python:3.9.9-slim
RUN apt-get update && \
apt-get install curl -y
2021-12-07 20:25:15 +00:00
WORKDIR /empty_dir
EXPOSE 80
CMD python -m http.server 80