mirror of
https://github.com/Team4388/scouting-2021.git
synced 2026-06-08 16:28:02 -06:00
13 lines
218 B
Docker
13 lines
218 B
Docker
|
|
FROM couchdb:3
|
||
|
|
|
||
|
|
ENV HOME /home/dbusr
|
||
|
|
|
||
|
|
RUN apt-get install curl
|
||
|
|
RUN useradd --create-home dbusr
|
||
|
|
RUN mkdir -p $HOME
|
||
|
|
WORKDIR $HOME
|
||
|
|
|
||
|
|
# ADD ./db_setup.sh $HOME
|
||
|
|
# RUN ["chmod", "+x", "./db_setup.sh"]
|
||
|
|
# RUN ["./db_setup.sh"]
|