CI / build (push) Failing after 1m25s
CI / test (3.12) (push) Failing after 1m47s
CI / test (3.9) (push) Failing after 1m59s
CI / test (3.10) (push) Failing after 1m59s
CI / test (3.11) (push) Failing after 2m0s
CI / lint (push) Failing after 2m2s
CI / test (3.8) (push) Failing after 2m50s
12 lines
162 B
Docker
12 lines
162 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8101
|
|
|
|
CMD ["python", "proxy.py"] |