nitro-stack/stack-orchestrator/container-build/cerc-go-nitro/Dockerfile

18 lines
369 B
Docker
Raw Normal View History

FROM golang:1.21-bullseye AS builder
# Copy files into image
WORKDIR /app
COPY . .
# Build the binary
RUN go build -v -o nitro .
# TODO: Update steps to build go-nitro image
# Reduce image size
FROM debian:bullseye-slim
RUN apt-get update
RUN apt-get install -y ca-certificates jq netcat
RUN rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=builder /app/nitro .