cc7c050fdb
1) EXPOSE 3000 in Dockerfile + set loadbalancer port to 3000 in docker-compose.yml 2) Add reference to a manually installation of osm2pgsql 3) Add -W to osm2pgsql, which asks for the postgres password 4) Added the manual creation of the docker network `gateway` 5) Changed deployment order: build portal -> prepeare database -> import Osm -> run the container 6) Add localhost binding of postgres to docker-compose.yml (optional)
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:17 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/webpack.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 3000
|
|
|
|
CMD ["openbikesensor-api"]
|
|
|