forked from actualbudget/actual-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move alpine build to Dockerfile.alpine; add tini to debian Dockerfile
- Loading branch information
Showing
2 changed files
with
22 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
FROM alpine as base | ||
|
||
RUN apk add --no-cache nodejs yarn openssl tini | ||
RUN mkdir /app | ||
FROM node:16-bullseye as base | ||
RUN apt-get update && apt-get install -y openssl | ||
WORKDIR /app | ||
ENV NODE_ENV=production | ||
ADD yarn.lock package.json ./ | ||
RUN npm rebuild bcrypt --build-from-source | ||
RUN yarn install --production | ||
|
||
FROM alpine as prod | ||
|
||
RUN apk add --no-cache nodejs yarn openssl tini | ||
FROM node:16-bullseye-slim as prod | ||
RUN apt-get update && apt-get install openssl tini && apt-get clean -y && rm -rf /var/lib/apt/lists/* | ||
WORKDIR /app | ||
COPY --from=base /app /app | ||
ADD . . | ||
|
||
ENTRYPOINT ["/sbin/tini", "--"] | ||
CMD ["yarn", "start"] | ||
ENTRYPOINT ["/usr/bin/tini","-g", "--"] | ||
CMD ["node", "app.js"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM alpine as base | ||
RUN apk add --no-cache nodejs yarn npm python3 openssl build-base | ||
WORKDIR /app | ||
ENV NODE_ENV=production | ||
ADD yarn.lock package.json ./ | ||
RUN npm rebuild bcrypt --build-from-source | ||
RUN yarn install --production | ||
|
||
FROM alpine as prod | ||
RUN apk add --no-cache nodejs yarn openssl tini | ||
WORKDIR /app | ||
COPY --from=base /app /app | ||
ADD . . | ||
ENTRYPOINT ["/sbin/tini","-g", "--"] | ||
CMD ["node", "app.js"] |