We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfd5b7c commit c1b0459Copy full SHA for c1b0459
Dockerfile
@@ -1,11 +1,11 @@
1
-FROM node:17.8-alpine3.15
+FROM node:22-alpine
2
3
EXPOSE 8061
4
5
WORKDIR /iframely
6
7
# Create new non-root user
8
-RUN addgroup -S iframelygroup && adduser -S iframely -G iframelygroup
+RUN addgroup --system iframelygroup && adduser --system iframely -G iframelygroup
9
RUN apk add g++ make python3
10
11
# This will change the config to `config.<VALUE>.js` and the express server to change its behaviour.
Makefile
@@ -7,7 +7,6 @@ PUBLISHPORT := ${EXPOSEPORT}
build:
git checkout main
- git pull --rebase upstream main
git branch -f tag-${VERSION}
12
git checkout tag-${VERSION}
13
docker \
0 commit comments