add dockerfiles

master
michael 2022-09-04 23:35:15 +00:00
parent 3172c9621f
commit 0f63fd1e57
2 changed files with 20 additions and 0 deletions

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM rockylinux:9
# Prod dockerfile, grab GH releases once those exist

17
dev.Dockerfile Normal file
View File

@ -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"]