Add Dockerfile for dev environment

This commit is contained in:
Jan Bader 2022-01-24 14:45:05 +00:00
parent b2b934cfb3
commit 93b1712fb5
3 changed files with 6 additions and 3 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@
# Unignore all with extensions
!*.*
!Dockerfile
# Unignore all dirs
!*/

View File

@ -1,3 +0,0 @@
FROM golang:1.17
RUN go install github.com/kyleconroy/sqlc/cmd/sqlc@latest
RUN go install github.com/go-task/task/v3/cmd/task@latest

5
docker/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM alpine
RUN apk add go
RUN go install github.com/kyleconroy/sqlc/cmd/sqlc@latest
RUN go install github.com/go-task/task/v3/cmd/task@latest
RUN apk add nodejs yarn bash