mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-05-30 11:25:21 -04:00
Merge pull request #13 from Alpha200/improved-dockerfile
Improved Dockerfile
This commit is contained in:
+6
-2
@@ -1,9 +1,13 @@
|
||||
FROM python:3
|
||||
FROM python:3.8
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY . .
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
RUN chmod +x ./whoogle-search
|
||||
|
||||
EXPOSE 5000
|
||||
|
||||
CMD ["./whoogle-search"]
|
||||
|
||||
Reference in New Issue
Block a user