Commit 73bc4303 authored by nanahira's avatar nanahira

improve

parent 4db7ebc4
Pipeline #21789 passed with stages
in 1 minute and 25 seconds
...@@ -2,8 +2,9 @@ FROM python:3.10 ...@@ -2,8 +2,9 @@ FROM python:3.10
WORKDIR /app WORKDIR /app
COPY ./requirements.txt ./ COPY ./requirements.txt ./
RUN pip install -r ./requirements.txt RUN pip install --no-cache -r ./requirements.txt
COPY . ./ COPY . ./
CMD ["python", "main.py"] ENTRYPOINT ["python"]
\ No newline at end of file CMD ["main.py"]
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