We can't make this file beautiful and searchable because it's too large.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Customer,Item | |
1,citrus fruit | |
1,margarine | |
1,ready soups | |
1,semi-finished bread | |
2,coffee | |
2,tropical fruit | |
2,yogurt | |
3,whole milk | |
4,cream cheese |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:latest as golang | |
WORKDIR /app | |
COPY . . | |
RUN go mod download | |
RUN go mod verify | |
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o /server . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM golang:alpine as golang | |
# Create appuser (only for scratch) | |
ENV USER=appuser | |
ENV UID=10001 | |
RUN adduser \ | |
--disabled-password \ | |
--gecos "" \ | |
--home "/nonexistent" \ | |
--shell "/sbin/nologin" \ |
OlderNewer