2021-10-25 19:27:52 +02:00
|
|
|
# Download latest golang image
|
|
|
|
FROM golang:latest
|
|
|
|
# Create a directory for the app
|
|
|
|
RUN mkdir /app
|
|
|
|
# Copy all files from current directory to working directory
|
|
|
|
COPY . /app
|
|
|
|
# Set working directory
|
|
|
|
WORKDIR /app
|
|
|
|
|
2023-04-13 00:05:41 +02:00
|
|
|
RUN make xdprod
|