Toggle navigation
Toggle navigation
This project
Loading...
Sign in
방승일
/
mamuri-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
윤준석
2022-05-14 00:29:57 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
16ec3bdfff3d463a04241025f9d55da186d0e320
16ec3bdf
1 parent
09b700da
FIX: Dockerfile contains source files and build golang echo application
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
joongna/Dockerfile
joongna/Dockerfile
View file @
16ec3bd
FROM
golang:1.17.3
ENV
Xvfb :99
ENV
DISPLAY=:99
ENV
GO111MODULE=on
RUN
apt-get -y update
RUN
apt-get install -y wget xvfb gnupg
...
...
@@ -12,5 +16,10 @@ RUN apt-get install -yqq unzip
RUN
wget -O /tmp/chromedriver.zip http://chromedriver.storage.googleapis.com/
`
curl -sS chromedriver.storage.googleapis.com/LATEST_RELEASE
`
/chromedriver_linux64.zip
RUN
unzip /tmp/chromedriver.zip chromedriver -d /usr/local/bin/
ENV
Xvfb :99
ENV
DISPLAY=:99
WORKDIR
/src
COPY . /src
RUN
go build -o Joongna_api_server
EXPOSE
8080
CMD
["./Joongna_api_server"]
\ No newline at end of file
...
...
Please
register
or
login
to post a comment