Skip to content

Commit

Permalink
Merge pull request #1138 from samarthgr/2.1.1-generic
Browse files Browse the repository at this point in the history
2.1.1 generic | fnt, gnt validation fix
  • Loading branch information
egov-joy authored Jun 21, 2022
2 parents f21b414 + 8e9a515 commit ff03c60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/certificate_api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:lts-alpine
FROM node:lts-alpine3.13
RUN apk update && apk add --no-cache nmap && \
echo @edge http://nl.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories && \
echo @edge http://nl.alpinelinux.org/alpine/edge/main >> /etc/apk/repositories && \
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const ICAO9303_RE = new RegExp("^.*[A-Z<]$");
const ICAO9303_RE = new RegExp("^[A-Z]+(<[A-Z]+)*$");

function validateEURequestBody(requestBody) {
/*
Expand Down

0 comments on commit ff03c60

Please sign in to comment.