Commit cee7577e authored by nanahira's avatar nanahira

dockerfile fix

parent 59b1e133
Pipeline #9125 passed with stage
in 26 seconds
......@@ -2,9 +2,10 @@ FROM python:3.5.7-slim-buster
RUN mkdir /app
WORKDIR /app
ADD requirements.txt /app/
ADD . /app
COPY requirements.txt /app/
RUN pip3 install --no-cache-dir -r ./requirements.txt
COPY . /app
ENTRYPOINT [ "bash" ]
CMD [ "./docker-entry.sh" ]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment