Skip to content
Snippets Groups Projects
Verified Commit 9915c9bd authored by Ruben van Dijk's avatar Ruben van Dijk
Browse files

Initial commit.

parents
Branches
No related tags found
No related merge requests found
Pipeline #15605 failed
include:
- project: internal/templates
file: templates.yml
dockerbuild:
variables:
GIT_SUBMODULE_STRATEGY: recursive
context: overpass-turbo
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "gitsubmodule"
directory: "/"
schedule:
interval: "daily"
auto-merge:
squash: true
[submodule "overpass-turbo"]
path = overpass-turbo
url = https://github.com/tyrasd/overpass-turbo.git
FROM node:lts-alpine as builder
WORKDIR /app
RUN corepack enable
COPY package.json yarn.lock .yarnrc.yml .
RUN yarn install
COPY . .
RUN sed -i 's_defaultServer: "https://overpass-api.de/api/"_defaultServer: "https://overpass-api.rubend.nl"_g' js/configs.ts && \
sed -i 's_https://overpass-api.de/api/_https://overpass-api.de/api/_' js/configs.ts && \
echo "echo DUMMY" > /bin/git && chmod +x /bin/git
RUN yarn run build
FROM halverneus/static-file-server:latest
COPY --from=builder /app/dist /web
Subproject commit 4ca2e6641e8d3fd174cffe3054d14fe338528064
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment