Skip to content

Commit

Permalink
docker/Dockerfile: [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
kanreisa committed Dec 17, 2021
1 parent 06a956e commit bc6c8ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Performance improvements, fixes for memory leaks and bugs related to EPG process

### Docker Changes

- Update base image to `node:16.12.0-buster-slim`.
- Update base image to `node:16.13.1-buster-slim`.
- Fixed the exit signal handling properly.
- When a `SIGHUP` is received in a container, only the node process can be restarted quickly.
- default `docker-compose.yml` volumes has been changed:
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG ARCH=
FROM ${ARCH}node:16.12.0-buster AS build
FROM ${ARCH}node:16.13.1-buster AS build
WORKDIR /app
ENV DOCKER=YES
ADD . .
Expand All @@ -10,7 +10,7 @@ RUN apt-get update && \
npm run build && \
npm install -g --unsafe-perm --production

FROM ${ARCH}node:16.12.0-buster-slim
FROM ${ARCH}node:16.13.1-buster-slim
WORKDIR /app
RUN apt-get update && \
apt-get upgrade -y && \
Expand Down

0 comments on commit bc6c8ec

Please sign in to comment.