listen/docker/build.linux.Dockerfile

15 lines
289 B
Text
Raw Normal View History

2025-06-29 13:47:56 -06:00
# This Dockerfile is meant for building listen for Linux ONLY
# listen is currently not intended to run in a Docker container
ARG IMAGE="1-alpine"
2025-06-29 13:47:56 -06:00
FROM golang:${IMAGE} AS build
WORKDIR /usr/src/listen
COPY . .
RUN apk upgrade --no-cache
RUN go build .
CMD ["tail", "-f", "/dev/null"]