Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Hotfix: fix docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
myoung34 committed Aug 1, 2020
1 parent 12dff33 commit 8f9ae9b
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 0.5.2

IMPROVEMENTS:

* Hotfix: fix dockerfile, something in python-alpine is broken on HCI


## 0.5.1

IMPROVEMENTS:

* Hotfix: commit sqlite transactions:
https://github.com/myoung34/tilty/pull/19


## 0.5.0

IMPROVEMENTS:
Expand Down
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM python:3.6-alpine
FROM alpine:3.12.0

LABEL maintainer="[email protected]"

RUN apk add -U --no-cache alpine-sdk bluez-dev
RUN apk add -U --no-cache python3 python3-dev alpine-sdk bluez-dev py3-setuptools

COPY . /src
WORKDIR /src
RUN python setup.py install
RUN python3 setup.py install

COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Tilty"
version = "0.5.1"
version = "0.5.2"
description = "A pluggable system to receive and transmit bluetooth events from the Tilt Hydrometer"
authors = ["Marcus Young <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
long_description=long_description,
long_description_content_type="text/markdown",
py_modules=['tilty', 'blescan'],
version='0.5.1',
version='0.5.2',
packages=find_packages(exclude=['tests*']),
install_requires=[
'Click',
Expand Down

0 comments on commit 8f9ae9b

Please sign in to comment.