Files
nostr-tools/.devcontainer/Dockerfile
António Conselheiro 296e99d2a4 config devcontainer
2024-05-25 07:28:49 -03:00

21 lines
494 B
Docker

FROM node:20
RUN npm install typescript -g
# Install bun
RUN curl -fsSL https://bun.sh/install | bash
RUN source /root/.bashrc
# Install just
RUN cd /usr/bin
RUN wget https://github.com/casey/just/releases/download/1.26.0/just-1.26.0-x86_64-unknown-linux-musl.tar.gz
RUN tar -xzf just-1.26.0-x86_64-unknown-linux-musl.tar.gz
RUN rm just-1.26.0-x86_64-unknown-linux-musl.tar.gz
RUN chmod +x /usr/bin/just
WORKDIR /nostr-tools
ENV LANG C.UTF-8
# The run the start script
CMD [ "/bin/bash" ]