less-versioning-py-2
Some checks failed
Deploy to v2 / deploy (push) Failing after 57s

This commit is contained in:
Untone 2024-02-17 03:15:34 +03:00
parent 51ee7f728c
commit 1bb362249b

View File

@ -11,9 +11,9 @@ EXPOSE 8000
COPY . /app
# Install any needed packages specified in pyproject.toml
RUN apk update && apk add --no-cache gcc curl && \
RUN pip install -r requirements.txt --no-cache
RUN apk update && \
apk add --no-cache gcc curl && \
pip install -r requirements.txt --no-cache
# Run server.py when the container launches
CMD ["python", "server.py"]