-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed Dockerfile and README merge conflict
- Loading branch information
Showing
2 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,18 @@ RUN pip3 install --no-cache-dir -r /app/requirements.txt | |
COPY . /app | ||
|
||
WORKDIR /app/src | ||
|
||
FROM ubuntu:latest | ||
MAINTAINER Furkan SAYIM <[email protected]> | ||
|
||
RUN apt-get update \ | ||
&& apt-get install git -y \ | ||
&& apt-get install python -y \ | ||
&& apt-get install python-pip -y \ | ||
&& git clone https://github.com/xillwillx/skiptracer.git | ||
|
||
RUN pip install -r skiptracer/requirements.txt | ||
|
||
CMD python skiptracer.py | ||
|
||
WORKDIR /skiptracer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters