mirror of
https://github.com/DarkflameUniverse/AccountManager.git
synced 2024-08-30 17:32:17 +00:00
15 lines
203 B
Docker
15 lines
203 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.8-slim-buster
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip3 install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT [ "python3" ]
|
|
|
|
CMD [ "app.py" ]
|