You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
postserve/Dockerfile

11 lines
201 B
Docker

FROM python:3.7
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
VOLUME /mapping
COPY . /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "-u","/usr/src/app/server.py"]