File size: 272 Bytes
adbd9ad
 
 
 
772f141
adbd9ad
 
 
772f141
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.11-slim

WORKDIR /app

RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*

COPY . /app

RUN npm install
RUN npm run build

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

WORKDIR /app/back

CMD ["python", "server.py"]