mirror of
https://github.com/r-smith/deceptifeed.git
synced 2025-10-23 00:12:22 +00:00
11 lines
224 B
Docker
11 lines
224 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM golang:latest AS build-stage
|
|
WORKDIR /build
|
|
COPY . .
|
|
RUN make
|
|
|
|
FROM alpine:latest
|
|
RUN apk add --no-cache tzdata
|
|
WORKDIR /data
|
|
COPY --from=build-stage /build/bin /
|
|
ENTRYPOINT ["/deceptifeed"] |