29 lines
606 B
Docker
29 lines
606 B
Docker
FROM debian:12-slim
|
|
# FROM alpine:latest
|
|
|
|
WORKDIR /app
|
|
|
|
RUN mkdir -p /app/{dist,db}
|
|
|
|
COPY ./menuserver /app/
|
|
|
|
|
|
COPY ./dist /app/dist
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates
|
|
|
|
# Need the following to get a go app to run inside a docker container
|
|
# as per: https://www.fairlyusefulcode.co.uk/post/go-alpine-linux/ -- DEAD!!!
|
|
# RUN apk upgrade musl
|
|
# RUN apk add gcompat
|
|
|
|
# RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
|
|
# RUN ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
|
|
|
|
RUN chmod +x /app/menuserver
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD [ "/app/menuserver"]
|
|
|