mirror of
https://github.com/benbusby/whoogle-search
synced 2024-11-01 03:20:30 +00:00
e21341d6f4
- Updated Dockerfile to include chmod of run script - Added app.json for Heroku quick deploy - Removed unused function var in js controller - Moved requirements back to root of repo - Added Codebeat report to readme
10 lines
131 B
Docker
10 lines
131 B
Docker
FROM python:3
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
RUN chmod +x ./run
|
|
|
|
CMD ["./run"]
|