-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile.arm64
54 lines (39 loc) · 1.9 KB
/
Dockerfile.arm64
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Stage 1: Build the application
FROM node:18-slim as builder
LABEL org.opencontainers.image.title="AuthCompanion"
LABEL org.opencontainers.image.version="4.0.0-beta.1"
LABEL org.opencontainers.image.description="An admin-friendly, User Management Server (with Passkeys & JWTs) - for seamless and secure integration of user authentication"
LABEL org.opencontainers.image.authors="Paul Fischer"
LABEL org.opencontainers.image.source=https://github.com/authcompanion/authcompanion2
# update packages, to reduce the risk of vulnerabilities
RUN apt-get update && apt-get upgrade -y && apt-get autoclean -y && apt-get autoremove -y
# set a non-privileged user to use when running this image
RUN groupadd -r nodejs && useradd -g nodejs -s /bin/bash -d /home/nodejs -m nodejs
USER nodejs
# set the right (secure) folder permissions
RUN mkdir -p /home/nodejs/app/node_modules /home/nodejs/app/authdata && chown -R nodejs:nodejs /home/nodejs/app
WORKDIR /home/nodejs/app
# set default node env
ARG NODE_ENV=production
ENV NODE_ENV=${NODE_ENV}
ENV NPM_CONFIG_LOGLEVEL=warn
# copy project definition/dependencies files, for better reuse of layers
COPY --chown=nodejs:nodejs package*.json ./
# install dependencies here, for better reuse of layers
RUN npm install
# copy all sources in the container (exclusions in .dockerignore file)
COPY --chown=nodejs:nodejs . .
# Stage 2: Create a minimal image for ARM64v8
FROM arm64v8/node:18-slim
WORKDIR /home/nodejs/app
# Copy the application files from the builder stage
COPY --from=builder /home/nodejs/app .
# Exposed port/s
EXPOSE 3002
# Add an healthcheck, useful
# Healthcheck with curl, but not recommended
# HEALTHCHECK CMD curl --fail http://localhost:8000/health || exit 1
# Healthcheck by calling the additional script exposed by the plugin
# HEALTHCHECK --interval=30s --timeout=10s --start-period=5s CMD npm run healthcheck-manual
# Entrypoint and command
CMD [ "node", "server.js" ]