Skip to content

Commit 2cebe82

Browse files
committed
Add deploy to github container registry
1 parent 3d7a738 commit 2cebe82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ FROM python:3.8
55
WORKDIR /app
66

77
# Copia los requerimientos y los instala
8-
COPY ./backend/requirements.txt /app/requirements.txt
8+
COPY ./requirements.txt /app/requirements.txt
99
RUN pip install --no-cache-dir -r requirements.txt
1010

1111
# Copia el código del backend
12-
COPY backend /app
12+
COPY ./app /app
1313

1414
# Expone el puerto 8000
1515
EXPOSE 8000

0 commit comments

Comments
 (0)