Skip to content

Commit

Permalink
Use buster instead of stretch (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Suderman authored Dec 14, 2020
1 parent 4c1b754 commit 066f233
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ references:
jobs:
test:
docker:
- image: circleci/python:3.7-stretch-node
- image: circleci/python:3.7-buster-node
steps:
- checkout
- run: sudo test/setup.sh
Expand All @@ -70,7 +70,7 @@ jobs:

build:
docker:
- image: circleci/buildpack-deps:stretch
- image: circleci/buildpack-deps:buster
steps:
- checkout
- *load_supported_docker_bases
Expand All @@ -82,7 +82,7 @@ jobs:

release:
docker:
- image: circleci/node:boron-stretch
- image: circleci/node:boron-buster
steps:
- checkout
- *load_supported_docker_bases
Expand Down
12 changes: 12 additions & 0 deletions ci-images/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM circleci/buildpack-deps:buster

USER root

RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y -qq jq wget python-pip python-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

COPY bin /usr/local/bin
RUN install-rok8s-requirements

0 comments on commit 066f233

Please sign in to comment.