forked from github/schildichat-desktop
.github
configs
deploy
element-desktop
element-web
graphics
i18n-helper
i18n-overlays
local-pkgbuild-template
matrix-js-sdk
matrix-react-sdk
nix
overlay
patches
res
screenshots
.containerignore
.gitignore
.gitmodules
Containerfile.debian
Containerfile.fedora
Containerfile.windows
FEATURES.md
LICENSE
Makefile
README.md
alternative_package.sh
apply_patches.sh
build-bom.sh
bump_release_version.sh
bump_test_version.sh
create_local_pkgbuild.sh
flake.lock
flake.nix
generate_changelog.sh
generate_patches.sh
hard_reset_repos.sh
merge_helpers.sh
merge_upstream.sh
publish_release.sh
push_current_sc_branches.sh
regenerate_i18n.sh
setup.sh
theme.sh
windowsportable.sh
13 lines
277 B
Plaintext
13 lines
277 B
Plaintext
ARG CONTAINER_IMAGE_DEBIAN
|
|
FROM ${CONTAINER_IMAGE_DEBIAN}:latest
|
|
|
|
RUN dpkg --add-architecture i386 && apt-get update && apt-get install --no-install-recommends -y \
|
|
wine \
|
|
wine32 \
|
|
wine64 \
|
|
libwine \
|
|
libwine:i386 \
|
|
fonts-wine \
|
|
zip
|
|
|
|
WORKDIR /project |