Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump node from 15.8.0-alpine to 15.9.0-alpine in /docker #630

Merged
merged 1 commit into from
Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# STEP: 1
FROM node:15.8.0-alpine AS build-z2m
FROM node:15.9.0-alpine AS build-z2m

WORKDIR /usr/src/app

Expand Down Expand Up @@ -38,7 +38,7 @@ RUN npm run build && \
stylesheets

# STEP: 2 (runtime)
FROM node:15.8.0-alpine
FROM node:15.9.0-alpine

RUN apk add --no-cache \
libstdc++ \
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile.contrib
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
ARG SRC=git-clone-src

##### GIT CLONE #####
FROM node:erbium-buster AS git-clone-src
FROM node:15.9.0-alpine AS git-clone-src
ARG ZWJ_BRANCH=master
ARG Z2M_BRANCH=master
USER node
Expand All @@ -12,7 +12,7 @@ RUN git clone -b ${ZWJ_BRANCH} --depth 1 https://github.com/zwave-js/node-zwave-
RUN git clone -b ${Z2M_BRANCH} --depth 1 https://github.com/zwave-js/zwavejs2mqtt

##### LOCAL SOURCE #####
FROM node:erbium-buster AS local-copy-src
FROM node:15.9.0-alpine AS local-copy-src
COPY --chown=node node-zwave-js /home/node/node-zwave-js
COPY --chown=node zwavejs2mqtt /home/node/zwavejs2mqtt

Expand Down Expand Up @@ -51,7 +51,7 @@ RUN yarn link zwave-js @zwave-js/core @zwave-js/config @zwave-js/serial @zwave-j
RUN mkdir my_dist
RUN cp -Lr .git app.js package.json bin config dist hass lib public store views node_modules my_dist/

FROM node:erbium-buster-slim
FROM node:15.9.0-alpine
LABEL maintainer="robertsLando"
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
COPY --from=build /home/node/zwavejs2mqtt/my_dist /usr/src/app
Expand Down