Skip to content

Commit

Permalink
docker: update base image for docker build
Browse files Browse the repository at this point in the history
updates debian to buster
  • Loading branch information
esatterwhite committed Apr 28, 2020
1 parent 9c7cfce commit 1bbd0e4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
24 changes: 24 additions & 0 deletions packages/skyring/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
.nyc_output/
.eslintignore
.eslintrc
.git
.gitignore
.jshintrc
.npmignore
.test
.travis.yml

node_modules/
compose/
assets/
examples/
docs/
coverage/
tutorials/

*.save
*.tgz
npm-debug.log
payload.txt
jsdoc.json
local.env
4 changes: 2 additions & 2 deletions packages/skyring/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -- BASE
FROM buildpack-deps:stretch-curl AS base
FROM buildpack-deps:buster-curl AS base
ENV storage__path /var/data/skyring
ENV NODE_ENV=production
RUN apt-get update && apt-get install -y \
Expand All @@ -18,7 +18,7 @@ WORKDIR /opt/skyring
RUN npm ci

# -- RELEASE
FROM debian:stretch-slim as skyring
FROM debian:buster-slim as skyring
RUN mkdir -p /var/data/skyring
WORKDIR /opt/skyring
VOLUME /etc
Expand Down

0 comments on commit 1bbd0e4

Please sign in to comment.