diff --git a/backend/requirements.txt b/backend/requirements.txt index 157feb0..9def7c9 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -1,7 +1,7 @@ fastapi>=0.104.1 uvicorn[standard]>=0.24.0 sqlalchemy>=2.0.23 -psycopg[binary]>=3.2.2 +psycopg2-binary>=2.9.7 alembic>=1.12.1 pydantic>=2.5.0 python-jose[cryptography]>=3.3.0 diff --git a/frontend/Dockerfile b/frontend/Dockerfile index a995283..5969e3c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM node:18-alpine as build +FROM node:18-alpine AS build WORKDIR /app