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-15 23:40:53 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e519a11c4a8ce0255d6db3660899344c782bc0c
5e519a11
1 parent
31721d94
FIX: Dockerfile because of change crawling package to go-rod
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
16 deletions
joongna/Dockerfile
joongna/Dockerfile
View file @
5e519a1
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
RUN
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN
sh -c
'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
RUN
apt-get -y update
RUN
apt-get install -y google-chrome-stable
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/
WORKDIR
/src
COPY . /src
RUN
apt-get update
RUN
apt-get install -y libgconf-2-4 libatk1.0-0 libatk-bridge2.0-0 libgdk-pixbuf2.0-0 libgtk-3-0 libgbm-dev libnss3-dev libxss-dev libasound2
RUN
go build -o Joongna_api_server
EXPOSE
8080
...
...
Please
register
or
login
to post a comment