Skip to content

Commit

Permalink
0.4.0-2
Browse files Browse the repository at this point in the history
  • Loading branch information
pannal committed Feb 6, 2021
1 parent de5690a commit 52a1033
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
0.4.0-1
0.4.0-2
- rediscover PMS when SSL error occurred
- update Dockerfile

0.4.0
- Require Python 3.7
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ FROM python:3.7-slim

# Set the working directory to /app
WORKDIR /app

ARG DEBIAN_FRONTEND=noninteractive
RUN ln -s /usr/bin/dpkg-split /usr/sbin/dpkg-split
RUN ln -s /usr/bin/dpkg-deb /usr/sbin/dpkg-deb
RUN ln -s /bin/tar /usr/sbin/tar
RUN ln -s /bin/rm /usr/sbin/rm
RUN apt-get update \
&& apt-get install -y \
apt-utils \
Expand Down
2 changes: 1 addition & 1 deletion kitana.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def maintenance():

class Kitana(object):
PRODUCT_IDENTIFIER = "Kitana"
VERSION = "0.4.0-1"
VERSION = "0.4.0-2"
CLIENT_IDENTIFIER_BASE = "{}_{}".format(PRODUCT_IDENTIFIER, VERSION)
initialized = False
timeout = 5
Expand Down

0 comments on commit 52a1033

Please sign in to comment.