This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
lesspass
mirror of
https://github.com/lesspass/lesspass.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
67
Wiki
Activity
Browse Source
try to use alpine to reduce image size
pull/342/head
Guillaume Vincent
8 years ago
parent
7276c4f038
commit
50fb81eae8
2 changed files
with
3 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-5
Dockerfile
+1
-1
entrypoint.sh
+ 2
- 5
Dockerfile
View File
@@ -1,9 +1,6 @@
FROM python:3.5
FROM python:3.5
-alpine
RUN apt-get update && apt-get install -y \
supervisor \
netcat \
&& rm -rf /var/lib/apt/lists/*
RUN apk add --no-cache supervisor netcat-openbsd postgresql-dev gcc python3-dev musl-dev
RUN mkdir /backend
WORKDIR /backend
+ 1
- 1
entrypoint.sh
View File
@@ -1,4 +1,4 @@
#!/bin/
ba
sh
#!/bin/sh
while ! nc -z db 5432; do sleep 3; done
Write
Preview
Loading…
Cancel
Save