Skip to content

Commit 09633dc

Browse files
committed
adds podman support
Creates a dockerfile that can run via podman on fedora/centos/rhel systems with SELinux enabled.
1 parent 94acc3b commit 09633dc

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Dockerfile.fedora

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
FROM registry.fedoraproject.org/fedora-minimal:latest as base
2+
3+
RUN microdnf install iproute iw dnsmasq hostapd screen git curl python3-pip python3-setuptools python3-wheel python3-devel mosquitto haveged net-tools openssl-devel gcc sudo procps-ng iputils openssl
4+
5+
RUN python3 -m pip install --upgrade paho-mqtt tornado git+https://github.com/drbild/sslpsk.git pycryptodomex
6+
COPY docker/bin /usr/bin/
7+
8+
COPY . /usr/bin/tuya-convert
9+
10+
WORKDIR /usr/bin/tuya-convert
11+
12+
RUN mkdir -p /etc/service/tuya && cd /etc/service/tuya && ln -s /usr/bin/config.sh run

0 commit comments

Comments
 (0)