Skip to content

Commit

Permalink
Modifying Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
rbonichon committed Mar 28, 2023
1 parent a0768f4 commit 71bcd95
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile-mina-archive
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG image=debian:stretch-slim
ARG image=debian:buster-slim
FROM ${image}

# Run with `docker build --build-arg deb_version=<version>`
ARG deb_version
ARG deb_codename=stretch
ARG deb_codename=buster
ARG deb_release=alpha

ENV DEBIAN_FRONTEND noninteractive
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile-mina-daemon
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG image=debian:stretch-slim
ARG image=debian:buster-slim
FROM ${image}
# Run with `docker build --build-arg deb_version=<version>`
ARG deb_version
ARG deb_release=unstable
ARG deb_codename=stretch
ARG deb_codename=buster
ARG network=mainnet

ENV DEBIAN_FRONTEND noninteractive
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile-mina-test-executive
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG image=debian:stretch-slim
ARG image=debian:buster-slim
FROM ${image}
# Run with `docker build --build-arg deb_version=<version>`
ARG deb_version
ARG deb_release=unstable
ARG deb_codename=stretch
ARG deb_codename=buster
ARG MINA_BRANCH

ENV DEBIAN_FRONTEND noninteractive
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/Dockerfile-zkapp-test-transaction
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ARG image=debian:stretch-slim
ARG image=debian:buster-slim
FROM ${image}

# Run with `docker build --build-arg deb_version=<version>`
ARG deb_version
ARG deb_codename=stretch
ARG deb_codename=buster
ARG deb_release=alpha

ENV DEBIAN_FRONTEND noninteractive
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/stages/1-build-deps
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# The "build-deps" stage
# - Installs all compilers/interpreters, tools, and OS packages on the given debian or ubuntu image
#################################################################################################
# Supports debian:stretch-slim, debian:buster-slim, and ubuntu:focal
# Supports debian:bullseye-slim, debian:buster-slim, and ubuntu:focal
ARG image=ubuntu:focal
FROM ${image} AS build-deps

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/stages/4-production
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# The "production" Stage
# - sets up the final container with built binaries and a running postgresql archive node setup
#################################################################################################
# Supports debian:stretch-slim, debian:buster-slim, and ubuntu:focal
# Supports debian:bullseye-slim, debian:buster-slim, and ubuntu:focal
ARG image=ubuntu:focal
FROM ${image} AS production
ARG deb_codename=focal
Expand Down

0 comments on commit 71bcd95

Please sign in to comment.