47 lines
1.2 KiB
Docker
47 lines
1.2 KiB
Docker
# This dockerfile is for the API + Frontend production image
|
|
|
|
#############################################
|
|
# Build the frontend AS builder
|
|
#############################################
|
|
|
|
FROM node:14 as frontend-builder
|
|
|
|
WORKDIR /opt/obs/frontend
|
|
ADD frontend/package.json frontend/package-lock.json /opt/obs/frontend/
|
|
RUN echo update-notifier=false >> ~/.npmrc
|
|
RUN npm ci
|
|
|
|
ADD frontend/tsconfig.json frontend/craco.config.js /opt/obs/frontend/
|
|
ADD frontend/src /opt/obs/frontend/src/
|
|
ADD frontend/public /opt/obs/frontend/public/
|
|
|
|
RUN npm run build
|
|
|
|
#############################################
|
|
# Build the API and add the built frontend to it
|
|
#############################################
|
|
|
|
FROM python:3.9.7-bullseye
|
|
|
|
WORKDIR /opt/obs/api
|
|
|
|
ADD api/requirements.txt /opt/obs/api/
|
|
RUN pip install -r requirements.txt
|
|
|
|
ADD tile-generator /opt/obs/tile-generator
|
|
|
|
ADD api/scripts /opt/obs/scripts
|
|
RUN pip install -e /opt/obs/scripts
|
|
|
|
ADD api/setup.py /opt/obs/api/
|
|
ADD api/obs /opt/obs/api/obs/
|
|
ADD api/tools /opt/obs/api/tools/
|
|
RUN pip install -e /opt/obs/api/
|
|
|
|
COPY --from=frontend-builder /opt/obs/frontend/build /opt/obs/frontend/build
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["openbikesensor-api"]
|
|
|