21 lines
355 B
Plaintext
21 lines
355 B
Plaintext
|
# syntax=docker/dockerfile:1
|
||
|
FROM python:3.12.8-alpine
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY ./src/core .
|
||
|
COPY ./src/data .
|
||
|
COPY ./src/redirector.py .
|
||
|
COPY ./src/redirector .
|
||
|
|
||
|
COPY ./requirements.txt .
|
||
|
|
||
|
RUN python -m pip install --upgrade pip
|
||
|
RUN python -m pip install -r requirements.txt
|
||
|
|
||
|
RUN apk update
|
||
|
RUN apk add bash
|
||
|
RUN apk add nano
|
||
|
|
||
|
CMD [ "bash", "/app/redirector"]
|