mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-01 17:03:30 -05:00
9 lines
258 B
Docker
9 lines
258 B
Docker
FROM gitpod/workspace-full
|
|
|
|
USER gitpod
|
|
WORKDIR $HOME
|
|
|
|
RUN wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1604-3.6.13.tgz && \
|
|
mkdir -p mongodb && \
|
|
tar xaf mongodb-linux-x86_64-ubuntu1604-3.6.13.tgz -C mongodb --strip-components=1
|