Skip to content

Commit

Permalink
bin/podman-vscodium: install deps to develop web Rust projects using …
Browse files Browse the repository at this point in the history
…OpenSSL

Installing libssl-dev is required to use crate reqwest in Rust projects.
  • Loading branch information
fishilico committed Jul 16, 2024
1 parent f956c54 commit 0ddd53b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/podman-vscodium
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ build_container() {
# Install curl and wget to be able to install rustup
# Install build-essential, cmake... to compile projects
# Install npm for NodeJS
# Install libssl-dev to compile some projects with OpenSSL
podman build --no-cache -t localhost/podman-vscodium -f /dev/stdin << EOF
FROM docker.io/library/debian:bullseye-slim
RUN export DEBIAN_FRONTEND=noninteractive && \
Expand All @@ -62,9 +63,11 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
git \
iproute2 \
libasound2 \
libssl-dev \
libx11-xcb1 \
libxshmfence1 \
npm \
pkgconf \
procps \
wget \
&& \
Expand Down Expand Up @@ -139,6 +142,7 @@ SECCOMP_PROFILE='
"epoll_create",
"epoll_create1",
"epoll_ctl",
"epoll_pwait",
"epoll_wait",
"eventfd2",
"execve",
Expand Down

0 comments on commit 0ddd53b

Please sign in to comment.