Skip to content

Commit

Permalink
fix: upgrade Docker images to Debian buster
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Aug 23, 2020
1 parent bf1b55f commit 1016cc5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/agoric-cli/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stretch
FROM debian:buster
# MAINTAINER Tasos Latsas "tlatsas@kodama.gr"
LABEL maintainer="mfig@agoric.com"

Expand Down
2 changes: 1 addition & 1 deletion packages/cosmic-swingset/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The Golang build container.
# TODO This should be split out into the cosmos-connector.
FROM golang:1.14-stretch
FROM golang:1.14-buster

WORKDIR /usr/src/app
COPY go.mod go.sum ./
Expand Down
4 changes: 2 additions & 2 deletions packages/cosmic-swingset/provisioning-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:stretch AS build
FROM debian:buster AS build

RUN apt-get update -y && apt-get install gcc python3 python3-venv python3-dev -y && apt-get clean -y

Expand All @@ -9,7 +9,7 @@ RUN ve3/bin/pip install wheel
COPY . provisioning-server/
RUN ve3/bin/pip install provisioning-server/

FROM debian:stretch AS install
FROM debian:buster AS install

WORKDIR /usr/src/app
RUN apt-get update -y && apt-get install python3 -y && apt-get clean -y
Expand Down
2 changes: 1 addition & 1 deletion packages/deployment/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG TAG=latest
ARG REPO=agoric/agoric-sdk
FROM golang:stretch AS go-build
FROM golang:buster AS go-build

WORKDIR /usr/src/journalbeat
RUN apt-get update -y && apt-get install -y libsystemd-dev
Expand Down
4 changes: 2 additions & 2 deletions packages/deployment/Dockerfile.sdk
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG REPO=agoric/cosmic-swingset
FROM $REPO:$SWINGSET_TAG as cosmic-swingset-go

# The js build container
FROM node:lts-stretch AS build-js
FROM node:lts-buster AS build-js

WORKDIR /usr/src/agoric-sdk
COPY . .
Expand All @@ -18,7 +18,7 @@ RUN cd packages/cosmic-swingset && yarn build:gyp
RUN yarn build

# The install container.
FROM node:lts-stretch AS install
FROM node:lts-buster AS install

# Install some conveniences.
RUN apt-get update && apt-get install -y vim jq less && apt-get clean -y
Expand Down

0 comments on commit 1016cc5

Please sign in to comment.