We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9661ae commit 350f0faCopy full SHA for 350f0fa
Dockerfile
@@ -8,6 +8,7 @@ WORKDIR /app
8
COPY package.json yarn.lock /app/
9
RUN yarn set version stable
10
RUN yarn install
11
+RUN sed -i "s|mapbox://styles/[^\"']*|https://www.openhistoricalmap.org/map-styles/historical/historical.json|g" node_modules/changeset-map/dist/*.js
12
13
COPY src/ /app/src
14
COPY public/ /app/public
@@ -18,7 +19,6 @@ ENV REACT_APP_PRODUCTION_API_URL /api/v1
18
19
ENV NODE_OPTIONS --openssl-legacy-provider
20
21
RUN yarn run build:${BUILD_ENV}
-RUN sed -i "s|mapbox://styles/[^\"']*|https://www.openhistoricalmap.org/map-styles/historical/historical.json|g" node_modules/changeset-map/dist/*.js
22
23
FROM nginx:alpine
24
COPY --from=builder /app/build /srv/www
0 commit comments