Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ version: 2
jobs:
buildweb:
circleci_ip_ranges: true
docker:
- image: cimg/node:16.20
docker:
- image: cimg/python:3.9-node
- image: circleci/postgres:9.6.2
environment:
POSTGRES_USER: postgres
Expand Down Expand Up @@ -41,15 +41,15 @@ jobs:
deploy-dev:
circleci_ip_ranges: true
docker:
- image: cimg/node:16.20
- image: cimg/python:3.9-node
steps:
- checkout
- run:
name: Setup npm
working_directory: ~/project/website
command: npm install
- run:
name: Set up environment for deployment
name: Set up environment for deployment.
command: |
sudo apt-get update
sudo apt-get install rsync
Expand All @@ -64,7 +64,7 @@ jobs:
deploy-beta:
circleci_ip_ranges: true
docker:
- image: cimg/node:16.20
- image: cimg/python:3.9-node
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion pipeline/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
python3 \
python3-pip \
python3-gdbm \
python-lzo \
python3-lzo \
rsync \
vim \
wget \
Expand Down