Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
painfulexistence committed Apr 3, 2024
1 parent 4682d23 commit cb825fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
FROM mcr.microsoft.com/devcontainers/cpp:0-ubuntu-22.04

RUN apt-get update && apt-get install -y ninja
RUN apt-get update

# Install CMake
RUN if ! [command -v cmake &> /dev/null]; then \
apt-get install -y cmake; \
fi \
&& echo "CMake version: $(which cmake)"

# Install Ninja
RUN apt-get install -y ninja-build

# Set Emscripten variables
ENV EMSDK="/usr/local/emsdk"

Expand Down

0 comments on commit cb825fc

Please sign in to comment.