Started BE structure / docker for FE dev

This commit is contained in:
Leons Aleksandrovs
2025-07-03 17:55:15 +03:00
parent df38c61069
commit 6130fc8abf
15 changed files with 278 additions and 19 deletions
+2 -3
View File
@@ -1,11 +1,10 @@
FROM golang:1.24.4-alpine3.22@sha256:68932fa6d4d4059845c8f40ad7e654e626f3ebd3706eef7846f319293ab5cb7a as base
FROM golang:1.24.4-alpine3.22@sha256:68932fa6d4d4059845c8f40ad7e654e626f3ebd3706eef7846f319293ab5cb7a AS base
# Set up workdir
WORKDIR /app
# Install dependencies
# COPY go.mod go.sum ./
COPY go.mod ./
COPY go.mod go.sum ./
RUN go mod download
# Copy code, and compile