This website works better with JavaScript.
Home
Explore
Help
Sign In
dev
/
news-aggregator-back
Watch
1
Star
0
Fork
0
Code
Issues
2
Pull Requests
Projects
Releases
Wiki
Activity
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4
Commits
2
Branches
0
Tags
40 KiB
Go
68.3%
Makefile
27.5%
Dockerfile
4.2%
Tree:
666dbb5cf2
init-project
master
Branches
Tags
${ item.name }
Create tag
${ searchTerm }
Create branch
${ searchTerm }
from '666dbb5cf2'
${ noResults }
news-aggregator-back
/
Dockerfile
7 lines
99 B
Raw
Blame
History
FROM
golang:alpine as golang
COPY
app /app
WORKDIR
/app
RUN
go build -o main .
CMD
[
"/app/main"
]
Reference in new issue