Skip to content

Commit e33932e

Browse files
committed
testing boilerplate one more time after updating dockerfile
1 parent 9b05651 commit e33932e

File tree

6 files changed

+25
-202
lines changed

6 files changed

+25
-202
lines changed

.gitpod.Dockerfile

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1-
FROM gitpod/workspace-postgres
1+
FROM gitpod/workspace-postgres:latest
22

3+
SHELL ["/bin/bash", "-c"]
4+
5+
RUN sudo apt-get update \
6+
&& sudo apt-get update \
7+
&& sudo apt-get install -y redis-server \
8+
&& sudo apt-get clean \
9+
&& sudo rm -rf /var/cache/apt/* /var/lib/apt/lists/* /tmp/*
10+
11+
# That Gitpod install pyenv for me? no, thanks
12+
WORKDIR /home/gitpod/
13+
RUN rm .pyenv -Rf
14+
RUN rm .gp_pyenv.d -Rf
15+
RUN curl https://pyenv.run | bash
16+
17+
18+
RUN pyenv update && pyenv install 3.10.7 && pyenv global 3.10.7
19+
RUN pip install pipenv yapf
320
RUN npm i heroku -g
21+
22+
# remove PIP_USER environment
23+
USER gitpod
24+
RUN if ! grep -q "export PIP_USER=no" "$HOME/.bashrc"; then printf '%s\n' "export PIP_USER=no" >> "$HOME/.bashrc"; fi
25+
RUN echo "" >> $HOME/.bashrc
26+
RUN echo "unset DATABASE_URL" >> $HOME/.bashrc
27+
RUN echo "export DATABASE_URL" >> $HOME/.bashrc

migrations/README

-1
This file was deleted.

migrations/alembic.ini

-45
This file was deleted.

migrations/env.py

-96
This file was deleted.

migrations/script.py.mako

-24
This file was deleted.

migrations/versions/3aa71f11fdc1_.py

-35
This file was deleted.

0 commit comments

Comments
 (0)