diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3a345a4 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM rockylinux:9 + +# Prod dockerfile, grab GH releases once those exist diff --git a/dev.Dockerfile b/dev.Dockerfile new file mode 100644 index 0000000..148faf4 --- /dev/null +++ b/dev.Dockerfile @@ -0,0 +1,17 @@ +# WIP dev dockerfile + +FROM rockylinux:9 + +# Install Go +RUN curl https://go.dev/dl/go1.18.5.linux-amd64.tar.gz \ + -O go.tar.gz +RUN tar -xvf go.tar.gz +RUN rm -f go.tar.gz +RUN mv go /usr/local/bin + +# Install Ignite +RUN yes | curl https://get.ignite.com/cli! | bash + +RUN go mod tidy + +# CMD ["ignite", "chain", "serve"]