Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoom-Developer committed Nov 12, 2024
1 parent c4d5709 commit ac3dff2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM python:3.12-slim

WORKDIR /app
COPY . ./app
COPY . .

RUN pip install --no-cache-dir -r /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt

RUN apt-get -y update; apt-get -y install curl

ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

RUN chmod +x /app/entry.sh
RUN chmod +x entry.sh
ENTRYPOINT [ "sh", "entry.sh" ]

0 comments on commit ac3dff2

Please sign in to comment.