In progress: Jeeves communication is now based on SQLAlchemy
This commit is contained in:
parent
0fdc029153
commit
28726fee01
21 changed files with 637 additions and 78 deletions
|
|
@ -4,6 +4,7 @@ LABEL description="PyJeeves syncronization application" \
|
|||
maintainer="Marcus Lindvall <marcus.lindvall@gmail.com>"
|
||||
|
||||
RUN apk add --no-cache build-base freetds-dev git \
|
||||
&& pip install --no-cache-dir cython \
|
||||
&& pip install --no-cache-dir git+https://github.com/pymssql/pymssql.git \
|
||||
&& apk del --purge build-base freetds-dev git
|
||||
|
||||
|
|
@ -12,7 +13,9 @@ RUN apk add --no-cache freetds
|
|||
WORKDIR /app
|
||||
COPY ./requirements.txt /app/requirements.txt
|
||||
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
RUN apk add --no-cache build-base libffi-dev openssl-dev \
|
||||
&& pip install --no-cache-dir -r requirements.txt \
|
||||
&& apk del --purge build-base
|
||||
|
||||
COPY . /app
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue