Skip to content
Snippets Groups Projects
Commit a7f25a92 authored by Tulir Asokan's avatar Tulir Asokan :cat2:
Browse files

Fix using edge repos in docker image. Fixes #69

parent a2e1d162
No related branches found
No related tags found
No related merge requests found
FROM docker.io/alpine:3.12 FROM docker.io/alpine:3.12
RUN echo "@edge_testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN echo $'\
RUN echo "@edge_community http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories @edge http://dl-cdn.alpinelinux.org/alpine/edge/main\n\
@edge http://dl-cdn.alpinelinux.org/alpine/edge/testing\n\
@edge http://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories
RUN apk add --no-cache \ RUN apk add --no-cache \
python3 py3-pip py3-setuptools py3-wheel \ python3 py3-pip py3-setuptools py3-wheel \
...@@ -13,9 +15,8 @@ RUN apk add --no-cache \ ...@@ -13,9 +15,8 @@ RUN apk add --no-cache \
py3-ruamel.yaml \ py3-ruamel.yaml \
imagemagick \ imagemagick \
# Indirect dependencies # Indirect dependencies
py3-commonmark@edge_testing \ py3-commonmark@edge \
py3-alembic@edge_testing \ py3-alembic@edge \
py3-python-editor@edge_community \
#fbchat #fbchat
py3-beautifulsoup4 \ py3-beautifulsoup4 \
py3-paho-mqtt \ py3-paho-mqtt \
...@@ -32,9 +33,9 @@ RUN apk add --no-cache \ ...@@ -32,9 +33,9 @@ RUN apk add --no-cache \
#py3-aiofiles \ # (too new) #py3-aiofiles \ # (too new)
py3-cachetools \ py3-cachetools \
py3-unpaddedbase64 \ py3-unpaddedbase64 \
py3-h2@edge_testing \ py3-h2@edge \
py3-pyaes@edge_testing \ py3-pyaes@edge \
py3-logbook@edge_testing \ py3-logbook@edge \
# Other dependencies # Other dependencies
ca-certificates \ ca-certificates \
su-exec su-exec
......
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