21 lines
515 B
Docker
21 lines
515 B
Docker
FROM node:19.4-alpine AS frontend
|
|
|
|
ARG server_url
|
|
RUN test -n "${server_url}"
|
|
|
|
COPY glebby-client /glebby-client
|
|
WORKDIR /glebby-client
|
|
RUN npm install
|
|
ENV VITE_GLEBBY_SERVER_URL=${server_url}
|
|
RUN npx vite build --outDir static
|
|
|
|
FROM python:3.11-alpine
|
|
|
|
COPY glebby-server /glebby-server
|
|
WORKDIR /glebby-server
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install gunicorn
|
|
COPY --from=frontend /glebby-client/static /glebby-server/static
|
|
|
|
CMD ["gunicorn", "--bind", "0.0.0.0:5000", "--threads", "100", "glebby:app"]
|