This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
creylopez
/
AppsPy
Watch
1
Star
1
Fork
0
Code
Issues
2
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Nuevos ajustes en Dockerfile
politica
Celestino Rey
1 year ago
parent
4cf5bc2f9d
commit
e95155bc8c
2 changed files
with
4 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
LyricsPy/servicios/Dockerfile
+2
-1
LyricsPy/servicios/entrypoint.sh
+ 2
- 1
LyricsPy/servicios/Dockerfile
View File
@ -14,7 +14,8 @@ RUN apt-get update && apt-get install -y sqlite3
COPY
requirements.txt requirements.txt
RUN
pip3 install -r requirements.txt
ADD
lyrics .
RUN
mkdir lyrics
ADD
lyrics lyrics
COPY
entrypoint.sh .
# run entrypoint.sh
+ 2
- 1
LyricsPy/servicios/entrypoint.sh
View File
@ -1,3 +1,4 @@
#!/bin/bash
exec
"
$@
"
#exec "$@"
python -m flask --app lyrics run
Write
Preview
Loading…
Cancel
Save