mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
5a426c86b0
Bumps golang from 1.20.3-alpine to 1.20.5-alpine. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
470 B
Plaintext
22 lines
470 B
Plaintext
FROM --platform=linux/amd64 golang:1.20.5-bullseye@sha256:419bc8954c0e08c539830c8669ccd116a063303481c748fabd09d8fd6d4e2c5f
|
|
LABEL maintainer="Fleet Developers"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
gcc \
|
|
libgtk-3-dev \
|
|
libayatana-appindicator3-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN mkdir -p /usr/src/fleet
|
|
RUN mkdir -p /output
|
|
|
|
WORKDIR /usr/src/fleet
|
|
|
|
COPY orbit ./orbit
|
|
COPY server ./server
|
|
COPY ee ./ee
|
|
COPY pkg ./pkg
|
|
COPY go.mod go.sum ./
|
|
|
|
CMD /bin/bash
|