Skip to content
Snippets Groups Projects
Commit 8dfb33d3 authored by Jan Christian Grünhage's avatar Jan Christian Grünhage
Browse files

make python 3 work in the docker container

parent 23b53b4e
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ Dockerfile
.travis.yml
.gitignore
demo/etc
synctl
tox.ini
.git/*
.tox/*
FROM docker.io/python:2-alpine3.8
ARG PYTHON_VERSION=2
FROM docker.io/python:${PYTHON_VERSION}-alpine3.8
COPY . /synapse
......@@ -12,6 +13,7 @@ RUN apk add --no-cache --virtual .build_deps \
postgresql-dev \
zlib-dev \
&& cd /synapse \
&& sed -i 's/\["synctl"\] + //' setup.py \
&& apk add --no-cache --virtual .runtime_deps \
libffi \
libjpeg-turbo \
......
......@@ -5,6 +5,7 @@ import os
import sys
import subprocess
import glob
import codecs
# Utility functions
convert = lambda src, dst, environ: open(dst, "w").write(jinja2.Template(open(src).read()).render(**environ))
......@@ -23,7 +24,7 @@ def generate_secrets(environ, secrets):
with open(filename) as handle: value = handle.read()
else:
print("Generating a random secret for {}".format(name))
value = os.urandom(32).encode("hex")
value = codecs.encode(os.urandom(32), "hex").decode()
with open(filename, "w") as handle: handle.write(value)
environ[secret] = value
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment