stor-test/dockerfile

7 lines
81 B
Plaintext

FROM python:3.9-alpine
WORKDIR /app
COPY . .
CMD [ "python3", "/app/main.py" ]