Skip to content

Commit 234d37c

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 234d37c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile.fedora

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
microdnf clean all
5+
6+
RUN python3 -m pip install --upgrade paho-mqtt tornado git+https://github.com/drbild/sslpsk.git pycryptodomex
7+
COPY docker/bin /usr/bin/
8+
9+
COPY . /usr/bin/tuya-convert
10+
11+
WORKDIR /usr/bin/tuya-convert
12+
13+
RUN mkdir -p /etc/service/tuya && cd /etc/service/tuya && ln -s /usr/bin/config.sh run

0 commit comments

Comments
 (0)