Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Nodejs 8.0.0 alpine 3.6.0
FROM node:13.14.0-alpine
FROM node:16.16.0-alpine

# Label for tracking
LABEL nl.openstad.container="frontend" nl.openstad.version="0.0.1-beta" nl.openstad.release-date="2020-05-07"
Expand Down Expand Up @@ -35,7 +35,7 @@ ENV S3_BUCKET=""


# Install all base dependencies.
RUN apk add --no-cache --update openssl g++ make python musl-dev git bash
RUN apk add --no-cache --update openssl g++ make python3 musl-dev git bash


# Set the working directory to the root of the container
Expand All @@ -54,7 +54,7 @@ RUN npm install --loglevel warn --production
RUN npm install -g nodemon

# Remove unused packages only used for building.
RUN apk del openssl g++ make python && rm -rf /var/cache/apk/*
RUN apk del openssl g++ make python3 && rm -rf /var/cache/apk/*

RUN mkdir -p /home/app/public
RUN mkdir -p /home/app/public
Expand Down
870 changes: 93 additions & 777 deletions locales/default.json

Large diffs are not rendered by default.

Loading