This website works better with JavaScript.
Home
Explore
Help
Sign In
abhas
/
MailyGo
mirror of
https://git.jlel.se/jlelse/MailyGo
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Add Dockerfile
pull/1/head
Jan-Lukas Else
4 years ago
parent
197817cb03
commit
6f09bc8b10
1 changed files
with
11 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+11
-0
Dockerfile
+ 11
- 0
Dockerfile
View File
@ -0,0 +1,11 @@
FROM
golang:1.14-alpine as build
ADD
. /app
WORKDIR
/app
RUN
go build
FROM
alpine:3.11
RUN
apk add --no-cache tzdata ca-certificates
COPY
--from
=
build /app/mailygo /bin/
WORKDIR
/app
EXPOSE
8080
CMD
[
"mailygo"
]
Write
Preview
Loading…
Cancel
Save