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 November 25, 2024 22:22
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 && \
@danupp
danupp / Dockerfile
Last active November 25, 2024 22:21
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 && \