5 lines
77 B
Docker
5 lines
77 B
Docker
FROM python:3.8-alpine
|
|
|
|
WORKDIR /home/python
|
|
COPY . .
|
|
RUN mkdir -m 777 built
|