Skip to content

Commit

Permalink
Update stellar-sdk, change dockerfile to use debian base (#560)
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeUrban authored Nov 11, 2021
1 parent e0b9cc8 commit af7d09e
Show file tree
Hide file tree
Showing 5 changed files with 1,076 additions and 623 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Python version
FROM python:3.7-alpine
FROM python:3.7

# Set environment variables
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1

# Install system dependencies
RUN apk update && apk add build-base postgresql-dev postgresql-client libffi-dev python3-dev cargo gettext-dev curl
RUN apt-get update && apt-get install -y build-essential libssl-dev libffi-dev python3-dev cargo postgresql postgresql-client gettext curl

# Copy files to working directory
RUN mkdir /code /code/polaris /code/data
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ django-environ = "*"
django-model-utils = ">=4.1, <5.0"
djangorestframework = ">=3.12, <4.0"
whitenoise = ">=5.3, <6.0"
stellar-sdk = ">=5.0, <6.0"
stellar-sdk = ">=5.0.1, <6.0"
aiohttp = ">=3.7, <4"
django-cors-headers = ">=3.7, <4.0"
toml = "*"
Expand Down
Loading

0 comments on commit af7d09e

Please sign in to comment.