Update element-web from v1.7.23 → v1.9.0
This commit is contained in:
parent
4815162807
commit
81adfea334
2 changed files with 14 additions and 1 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
FROM python:3-alpine
|
||||||
|
LABEL description="A Matrix bot for Alertmanager"
|
||||||
|
# Instal gcc to build wheels
|
||||||
|
RUN apk add --no-cache gcc musl-dev
|
||||||
|
# Force the stdout and stderr streams to be unbuffered
|
||||||
|
ENV PYTHONUNBUFFERED 1
|
||||||
|
# Install requirements from PyPI
|
||||||
|
COPY requirements.txt requirements.txt
|
||||||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
# Copy the all the necessary files
|
||||||
|
COPY . .
|
||||||
|
EXPOSE 8000
|
||||||
|
ENTRYPOINT python3 bot.py
|
|
@ -1,4 +1,4 @@
|
||||||
FROM vectorim/element-web:v1.7.23
|
FROM vectorim/element-web:v1.9.0
|
||||||
|
|
||||||
# Customize instance settings and background
|
# Customize instance settings and background
|
||||||
COPY config.json /app/config.json
|
COPY config.json /app/config.json
|
||||||
|
|
Loading…
Reference in a new issue