mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
8 lines
201 B
Docker
8 lines
201 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.9.9-slim
|
|
WORKDIR /empty_dir
|
|
EXPOSE 80
|
|
HEALTHCHECK --interval=2m --timeout=3s \
|
|
CMD curl -f http://localhost:80 || exit 1
|
|
CMD python -m http.server 80
|