forked from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
32 lines (25 loc) · 1.07 KB
/
Dockerfile
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
ARG NODE_VERSION=20.6.0
FROM node:${NODE_VERSION}-alpine
# Use production node environment by default.
ENV NODE_ENV production
ENV CONFIGURATION_FILE insta-integration.yaml
ENV INSTA_INFRA_FOLDER integration-test/insta-infra
ENV BASE_FOLDER /tmp/insta-integration
ENV DOCKER_VERSION 27.0.3
WORKDIR /usr/src/app
# Download dependencies as a separate step to take advantage of Docker's caching.
# Leverage a cache mount to /root/.npm to speed up subsequent builds.
# Leverage a bind mounts to package.json and package-lock.json to avoid having to copy them into
# into this layer.
RUN --mount=type=bind,source=package.json,target=package.json \
--mount=type=bind,source=package-lock.json,target=package-lock.json \
--mount=type=cache,target=/root/.npm \
npm ci --omit=dev \
&& apk --no-cache add docker-cli
# Run the application as a non-root user.
USER node
# Copy the rest of the source files into the image.
COPY . .
HEALTHCHECK --interval=1s --timeout=1s --start-period=1s --retries=5 CMD echo "hello world" || exit 1
# Run the application.
CMD ["node", "./src/index.js"]