Skip to content

Instantly share code, notes, and snippets.

View danupp's full-sized avatar

Daniel U danupp

View GitHub Profile
@danupp
danupp / Dockerfile
Last active June 4, 2024 10:29
Dockerfile for building and running WSJT-X, as non-root
FROM ubuntu:latest
RUN userdel -r ubuntu
ENV SE 'Sweden/Stockholm'
RUN echo $TZ > /etc/timezone && \
apt-get update && apt-get upgrade -y && \
DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata && \
rm /etc/localtime && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata && \
@danupp
danupp / Dockerfile
Last active December 10, 2023 22:08
Dockerfile for building and running WSJT-X
FROM ubuntu:latest
ENV SE 'Sweden/Stockholm'
RUN echo $TZ > /etc/timezone && \
apt-get update && apt-get upgrade -y && \
apt-get install -y tzdata && \
rm /etc/localtime && \
ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
dpkg-reconfigure -f noninteractive tzdata && \
apt-get install -y autoconf automake libtool cmake git && \