Some checks failed
Build and Push Docker Image / build-and-push (push) Has been cancelled
7 lines
207 B
Docker
7 lines
207 B
Docker
FROM python:3.12
|
|
WORKDIR /app
|
|
COPY backend/requirements.txt ./backend/requirements.txt
|
|
RUN pip install --no-cache-dir -r backend/requirements.txt
|
|
COPY . .
|
|
RUN chmod +x run_app.sh
|
|
ENTRYPOINT ["./run_app.sh"]
|