fix: bump stacks-node docker image versions to 2.0.5

This commit is contained in:
Matthew Little
2021-02-15 15:26:02 +01:00
parent cd4c95ab84
commit 8ebdf25a0f
4 changed files with 4 additions and 4 deletions

2
.gitpod.Dockerfile vendored
View File

@@ -1,4 +1,4 @@
FROM blockstack/stacks-blockchain@sha256:9602b0891652e85077bf1981ca2df5bfdfc78b0f33b963ec419ace85fa39e0c8 as corenode
FROM blockstack/stacks-blockchain:2.0.5-stretch as corenode
FROM gitpod/workspace-postgres

View File

@@ -7,7 +7,7 @@ RUN echo "GIT_TAG=$(git tag --points-at HEAD)" >> .env
RUN npm config set unsafe-perm true && npm install && npm run build && npm prune --production
### Fetch stacks-node binary
FROM blockstack/stacks-blockchain:2.0.2-stretch as stacks-node-build
FROM blockstack/stacks-blockchain:2.0.5-stretch as stacks-node-build
### Begin building base image
FROM ubuntu:focal

View File

@@ -1,4 +1,4 @@
FROM blockstack/stacks-blockchain:2.0.2-stretch as build
FROM blockstack/stacks-blockchain:2.0.5-stretch as build
FROM debian:stretch

View File

@@ -15,7 +15,7 @@ RUN npm install && npm run build && npm prune --production
FROM rust:stretch as stacks-node-build
ARG STACKS_TAG=2.0.2
ARG STACKS_TAG=2.0.5
RUN mkdir -p /src /stacks
WORKDIR /src