move main

This commit is contained in:
Dennis Jekubczyk
2021-05-24 12:35:42 +02:00
parent f878f266c5
commit 05e0e470e0
2 changed files with 1 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ FROM golang:1.16-alpine as builder
WORKDIR /app
ADD . ./
RUN ls -al && go build -o main main.go
RUN go build -o main cmd/main.go
FROM scratch as runtime