summaryrefslogtreecommitdiff
path: root/docker/sites-build/Dockerfile
blob: 51cfc20ed8b12652b5bb239f6b0d9b0731250a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM python:alpine

# Dependencies

COPY requirements.txt /

RUN pip install -r requirements.txt

# Install GIT

RUN apk add git

# Create the user

RUN useradd -m taler-websites && su taler-websites

# Execute when container run

ENTRYPOINT ./deployment/docker/sites-build/build-sites.sh