mirror of
https://github.com/fspc/workstand.git
synced 2025-02-22 08:53:23 -05:00
9 lines
204 B
Docker
9 lines
204 B
Docker
FROM python:3.5
|
|
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
|