ragtag4 / Dockerfile
hugging2021's picture
Upload folder using huggingface_hub
79c7b05 verified
raw
history blame contribute delete
277 Bytes
# golang image and setup for the gin server
FROM golang:1.24.1
# Set the working directory in the container
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
RUN go mod download
RUN go build -o ragtag
EXPOSE 8080
CMD ["./ragtag"]