Skip to content

Commit 70d30e4

Browse files
committed
first commit
1 parent 045de3b commit 70d30e4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

Dockerfile

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM python:3.5.6-alpine3.8
2+
3+
LABEL maintainer="safakcirag@gmail.com"
4+
5+
COPY . .
6+
7+
RUN apk update && apk add --no-cache --virtual alpine-sdk gcc python3-dev freet$
8+
9+
RUN pip --no-cache-dir install numpy
10+
11+
RUN pip --no-cache-dir install Cython
12+
13+
RUN pip --no-cache-dir install pystan
14+
15+
RUN pip --no-cache-dir install fbprophet
16+
17+
RUN apk del alpine-sdk gcc python3-dev freetype-dev libpng-dev musl-dev
18+

0 commit comments

Comments
 (0)