Skip to content

Commit

Permalink
PLAT-14513: bump Dockerfile image (#429)
Browse files Browse the repository at this point in the history
* fix: bump dockerfile on root scaffold as well

* yarn run bootstrap and template; bump ver
  • Loading branch information
alaisgomes authored Apr 24, 2024
1 parent b5e14cf commit b3120a9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scaffold": {
"type": "react-native",
"version": "2.7.0",
"version": "2.7.1",
"cookiecutter_context": {
"project_name": "{{cookiecutter.project_name}}",
"project_slug": "{{cookiecutter.project_slug}}",
Expand Down
4 changes: 2 additions & 2 deletions dist/cookie/{{cookiecutter.project_slug}}/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crowdbotics/cb-django:3.8-slim-buster AS build
FROM crowdbotics/cb-django:3.9-slim-buster AS build

# Copy dependency management files and install app packages to /.venv
COPY backend/Pipfile backend/Pipfile.lock /
Expand All @@ -11,7 +11,7 @@ COPY . .
RUN yarn install && yarn run web:build


FROM crowdbotics/cb-django:3.8-slim-buster AS release
FROM crowdbotics/cb-django:3.9-slim-buster AS release
ARG SECRET_KEY

# Set Working directory
Expand Down
2 changes: 1 addition & 1 deletion scaffold/template/custom/.crowdbotics.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scaffold": {
"type": "react-native",
"version": "2.7.0",
"version": "2.7.1",
"cookiecutter_context": {
"project_name": "{{cookiecutter.project_name}}",
"project_slug": "{{cookiecutter.project_slug}}",
Expand Down
4 changes: 2 additions & 2 deletions scaffold/template/custom/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM crowdbotics/cb-django:3.8-slim-buster AS build
FROM crowdbotics/cb-django:3.9-slim-buster AS build

# Copy dependency management files and install app packages to /.venv
COPY backend/Pipfile backend/Pipfile.lock /
Expand All @@ -11,7 +11,7 @@ COPY . .
RUN yarn install && yarn run web:build


FROM crowdbotics/cb-django:3.8-slim-buster AS release
FROM crowdbotics/cb-django:3.9-slim-buster AS release
ARG SECRET_KEY

# Set Working directory
Expand Down

0 comments on commit b3120a9

Please sign in to comment.