mirror of
https://github.com/arabine/open-story-teller.git
synced 2025-12-06 17:09:06 +01:00
17 lines
269 B
Docker
17 lines
269 B
Docker
FROM ubuntu:22.04
|
|
LABEL Description="Build environment"
|
|
|
|
ENV HOME /root
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
RUN mkdir /workspace
|
|
|
|
RUN apt-get update && apt-get -y --no-install-recommends install \
|
|
build-essential \
|
|
cmake \
|
|
nsis \
|
|
mingw-w64 \
|
|
git \
|
|
wget
|