Skip to content
Snippets Groups Projects
Commit af53cba7 authored by REGNAULT EVANN's avatar REGNAULT EVANN :fireworks:
Browse files

Merge branch 'ert' into 'main'

Base backend

See merge request luc.burckel/erp-mutuelle!1
parents 01e85b28 2f5a868a
Branches
No related merge requests found
FROM alpine AS base
FROM base as build
RUN apk update
RUN apk add go
COPY ./backend /srv
WORKDIR /srv
RUN go build -o backend
FROM alpine as runtime
COPY --from=build /srv/backend /bin/backend
ENTRYPOINT [ "/bin/backend" ]
\ No newline at end of file
module erp-mutuelle-back
go 1.20
package main
func main() {
println("YES")
}
version: '3.7'
services:
backend:
build: .
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment