Added Dockerfile (#15)

pull/16/head^2
James Mills 3 years ago committed by GitHub
parent 9f8036d555
commit ae29baba98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,10 @@
# Build
FROM prologic/go-builder:latest AS build
# Runtime
FROM alpine
COPY --from=build /src/monkey-lang /monkey-lang
ENTRYPOINT ["/monkey-lang"]
CMD [""]
Loading…
Cancel
Save