mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
ff969e8ddc
* Remove email address for redudancy Call to actions at the bottom of the page offer better forms of communication to join the community, trial Fleet, or ask questions. * Remove email mention * Remove email mention * Remove email mention
22 lines
398 B
Plaintext
22 lines
398 B
Plaintext
FROM --platform=linux/amd64 golang:1.19.2-bullseye
|
|
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
|