1
0
mirror of https://github.com/fspc/workstand.git synced 2025-02-22 08:53:23 -05:00
workstand/Dockerfile
2017-01-01 21:01:01 -06:00

9 lines
204 B
Docker

FROM python:3.6
RUN mkdir /code
WORKDIR /code
RUN mkdir requirements
ADD ./bikeshop_project /code
COPY ./requirements /code/requirements
RUN pip install -r ./requirements/development.txt
EXPOSE 8000:8000